h1{
    color: rebeccapurple;
    font-family: Arial, sans-serif;
}
h2{
    color: teal;
    font-family: 'Courier New', Courier, monospace;
}
p{
    color: navy;
    font-size: 25px;
}
.one{
    color:darkred
}
.two{
    color:darkgreen
}
#three{
    color: darkorange;
}
#four{
    color: darkblue;
}
*{
    color: rgb(238, 255, 0);
    font-weight: bold;
}
h1, h2, p{
    background-color: lightgray;    

}